home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_09_01 / 9n01100b < prev    next >
Text File  |  1990-10-20  |  229b  |  15 lines

  1.  
  2.      #ifdef MAIN
  3.           #define Global
  4.           #define INIT_GLOBAL
  5.      #else
  6.           #define Global extern
  7.      #endif
  8.  
  9.      Global int i
  10.      #ifdef INIT_GLOBAL
  11.                     = 5
  12.      #endif
  13.      ;
  14.  
  15.